home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / tests / bf / HalfwordTest.c < prev    next >
C/C++ Source or Header  |  1992-12-16  |  1KB  |  49 lines

  1. /* 
  2.  * HalfwordTest.c --
  3.  *
  4.  *    Routine to test a bitfield one halfword at a time.
  5.  *
  6.  * Copyright 1990 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.3 90/01/12 12:03:36 douglis Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <kernel/bf.h>
  21.  
  22.  
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * HalfwordTest --
  27.  *
  28.  *     Wrapper for Bf_Halfwordest.
  29.  *
  30.  * Results:
  31.  *    Result from Bf_Halfwordest.
  32.  *
  33.  * Side effects:
  34.  *    None.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. HalfwordTest(ptr, offset, size, value)
  41.     unsigned short    *ptr;
  42.     int            offset;
  43.     int            size;
  44.     int            value;
  45. {
  46.     return Bf_HalfwordTest(ptr, offset, size, value);
  47. }
  48.  
  49.